home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / GNU Chess 3.0 / Sources TC 4.0 / display.c next >
Text File  |  1991-04-23  |  6KB  |  299 lines

  1. /*
  2.   Mac interface for GNU Chess
  3.  
  4.   Revision: 10 Feb 1991
  5.  
  6.   Copyright (C) 1986, 1987, 1988 Free Software Foundation, Inc.
  7.   Copyright (c) 1988, 1989, 1990  John Stanback
  8.   Copyright (c) 1991  Airy ANDRE
  9.  
  10.  
  11.   This file is part of CHESS.
  12.  
  13.   CHESS is distributed in the hope that it will be useful,
  14.   but WITHOUT ANY WARRANTY.  No author or distributor
  15.   accepts responsibility to anyone for the consequences of using it
  16.   or for whether it serves any particular purpose or works at all,
  17.   unless he says so in writing.  Refer to the CHESS General Public
  18.   License for full details.
  19.  
  20.   Everyone is granted permission to copy, modify and redistribute
  21.   CHESS, but only under the conditions described in the
  22.   CHESS General Public License.   A copy of this license is
  23.   supposed to have been given to you along with CHESS so you
  24.   can know your rights and responsibilities.  It should be in a
  25.   file named COPYING.  Among other things, the copyright notice
  26.   and this notice must be preserved on all copies.
  27.   */
  28.   
  29. /* This file is based on standard GNU Chess interface */
  30.  
  31. #include <stdio.h>
  32. #include <DragMgr.h>
  33. #include <pascal.h>
  34. #include <SANE.h>
  35. #include "math.h"
  36.  
  37. #include "gnuchess.h"
  38. #include "macintf.h"
  39. #include "rsrc.h"
  40.  
  41. void OffDrawCase(Rect *r, Pattern color)
  42. /* Paint the rectancle "r" with color "color" on the OffScreen Bitmap */
  43. {
  44.     Rect rBis;
  45.     
  46.     UpdateOffScreen();
  47.  
  48.     FrameRect(r);
  49.  
  50.     rBis = *r;
  51.     InsetRect(&rBis,1,1);
  52.  
  53.     FillRect(&rBis,color);
  54.  
  55.     SetPort(WindBoard);
  56. }
  57.  
  58.  
  59. void UpdateDisplay (short f, short t, short flag, short iscastle, 
  60.                     short drawall, short *color, short *board)
  61. {
  62.   short i,j;
  63.   
  64.   GrafPtr SavePort;
  65.   
  66.   GetPort(&SavePort);
  67.   SetPort(WindBoard);
  68.   if (flag)
  69.     {
  70.       for (i = 0; i < 64; i++)
  71.           DrawPieces(PieceToNum(color[i], board[i]), i);
  72.     }
  73.   else
  74.   {
  75.       if (drawall)
  76.           AnimePieces(PieceToNum(color[f], board[f]),
  77.                       PieceToNum(color[t], board[t]),
  78.                         f, t, anim);
  79.       if (saveBoard[f] == pawn && (abs(t-f) == 7 || abs(t-f) == 9) &&
  80.             saveBoard[t] == no_piece) {
  81.               /* en passant */
  82.               if (saveColor[f] == white)
  83.                   DrawPieces(no_piece, t - 8);
  84.               else
  85.                   DrawPieces(no_piece, t + 8);
  86.       }    
  87.       if (iscastle) /* Castle */
  88.       if (t > f)
  89.       {
  90.       AnimePieces(PieceToNum(color[f + 3], board[f + 3]),
  91.                     PieceToNum(color[t - 1], board[t - 1]),
  92.                     f + 3, t - 1, anim);
  93.       }
  94.     else
  95.       {
  96.       AnimePieces(PieceToNum(color[f - 4], board[f - 4]),
  97.                     PieceToNum(color[t + 1], board[t + 1]),
  98.                     f - 4, t + 1, anim);
  99.       }
  100.     }
  101.  
  102.   SetPort(SavePort);
  103. }
  104.  
  105.  
  106.  
  107.  
  108.  
  109. Point CenterRect(Rect *r) 
  110. {
  111.     Point pt;
  112.     
  113.     pt.h = (r->left+r->right)/2;
  114.     pt.v = (r->top+r->bottom)/2;
  115.     return pt;
  116. }
  117.  
  118.  
  119. Rect * Rectangle(int xr, int yr, Rect *r)
  120. {
  121.     SetRect( r, 1-xr+(xr-1)*width, 1-yr+(yr-1)*height, 1-xr+xr*width,
  122.                 1-yr+yr*height);
  123.     return r;
  124. }
  125.  
  126. int PieceToNum(int color, int type)
  127. {
  128.  int Num = 0;
  129.  
  130.  switch (type)
  131.  {
  132.      case pawn:
  133.          Num = _PICT_PAWN_;
  134.          break;
  135.      case rook:
  136.          Num = _PICT_ROOK_;
  137.          break;
  138.      case knight:
  139.          Num = _PICT_KNIGHT_;
  140.          break;
  141.      case bishop:
  142.          Num = _PICT_BISHOP_;
  143.          break;
  144.      case queen:
  145.          Num = _PICT_QUEEN_;
  146.          break;
  147.      case king:
  148.          Num = _PICT_KING_;
  149.          break;
  150.  }
  151.  
  152.  if (Num && color == black) Num += 2;
  153.  
  154.  return Num;
  155. }
  156.  
  157. void PicInRect(Rect *rec, DragHandle DragStuff, Point *Pt)
  158. {
  159.     Rect r1,r2;
  160.  
  161.     r1=(**DragStuff).ShadowBits.bounds;
  162.     r2=(**DragStuff).PictureBits.bounds;
  163.     OffsetRect(&r1,-r1.right,-r1.bottom);
  164.     OffsetRect(&r2,-r2.right,-r2.bottom);
  165.     OffsetRect(&r1,Pt->h+(r1.right-r1.left)/2,Pt->v+(r1.bottom-r1.top)/2);
  166.     OffsetRect(&r2,Pt->h+(r2.right-r2.left)/2,Pt->v+(r2.bottom-r2.top)/2);
  167.     if (ShadowStuff.visible)
  168.             OffsetRect(&r1,ShadowStuff.dx,ShadowStuff.dy);
  169.     UnionRect(&r1,&r2,&r1);
  170.     InsetRect(&r1,-1,-1);
  171.     if (r1.top<rec->top)  Pt->v+=rec->top-r1.top;
  172.     if (r1.bottom>rec->bottom)  Pt->v+=rec->bottom-r1.bottom;
  173.     if (r1.left<rec->left)  Pt->h+=rec->left-r1.left;
  174.     if (r1.right>rec->right)  Pt->h+=rec->right-r1.right;
  175. }
  176.  
  177.  
  178. void DrawPieces(int Num, int sq)
  179. {
  180.  Rect r;
  181.  Boolean White;
  182.  PicHandle h1,h2;
  183.  int h,v;
  184.  GrafPtr oldPort;
  185.  long oldTicks;
  186.  
  187.  h = sq % 8 + 1;
  188.  v = sq / 8 + 1;
  189.  
  190.  White = (h+v)&1;
  191.  v = 9-v;
  192.  
  193.  h = scrntoxy(h);
  194.  v = scrntoxy(v);
  195.  
  196.  Rectangle(h,v,&r);
  197.  
  198.   if (Num)
  199.   {
  200.      pt = CenterRect(&r);
  201.  
  202.      h1 = GetPicture(Num);
  203.      HNoPurge((Handle)h1);
  204.      h2 = GetPicture(Num-1+Num%4);
  205.      HNoPurge((Handle)h2);
  206.  
  207.      NewDraggable(h1,h2,NULL,NULL,&myDragStuff);
  208.  
  209.       ShadowStuff.CopyMode = srcOr;
  210.       ShadowStuff.visible = FALSE;
  211.   }
  212.  
  213.   OffDrawCase(&r,White?ltGray:gray);
  214.   
  215.   if (Num) {
  216.      DragItTo(myDragStuff,pt,TRUE, TRUE);
  217.      DisposeDraggable(myDragStuff);
  218.  
  219.      HPurge((Handle)h1);
  220.      HPurge((Handle)h2);
  221.     }
  222.  
  223.   CopyBits(&OffScreenBits,&WindBoard->portBits,&r,&r,srcCopy,0L);
  224. }
  225.  
  226. void DragFromTo(DragHandle Drag, Point PtFrom, Point PtTo)
  227. {
  228.     long DeltaX,DeltaY,i;
  229.     double iMax;
  230.     Point Pt;
  231.     GrafPtr oldPort;
  232.     
  233.     GetPort(&oldPort);
  234.     SetPort(WindBoard);
  235.  
  236.     DeltaX = -PtFrom.h+PtTo.h;
  237.     DeltaY = -PtFrom.v+PtTo.v;
  238.     iMax = sqrt(sqr(DeltaX)+sqr(DeltaY));
  239.  
  240.      ShadowStuff.visible=1;
  241.      ShadowStuff.dx=4;
  242.      ShadowStuff.dy=4;
  243.  
  244.     for (i=4; i<=iMax+4; i++)
  245.         if (!(i % 5)) {
  246.             Pt.h = PtFrom.h+(i*DeltaX)/iMax;
  247.             Pt.v = PtFrom.v+(i*DeltaY)/iMax;
  248.             PicInRect(&chessRectOff,myDragStuff,&Pt);
  249.             DragItTo(Drag,Pt,1, FALSE);
  250.         }
  251.      ShadowStuff.CopyMode = srcOr;
  252.      ShadowStuff.visible = 0;
  253.      ShadowStuff.dx = 0;
  254.      ShadowStuff.dy = 0;
  255.     DragItTo(Drag,PtTo,1, TRUE);
  256.  
  257.     SetPort(oldPort);
  258. }
  259.  
  260. void AnimePieces(int before,int after ,int d, int a, int anim)
  261. {
  262.     int i,iMax,DeltaX,DeltaY;
  263.      long Count;
  264.     PicHandle h1,h2;
  265.      Point p1,p2;
  266.     Rect r;
  267.     GrafPtr oldPort;
  268.     
  269.     GetPort(&oldPort);
  270.      SetPort(WindBoard);
  271.      
  272.      SetPort(WindBoard);
  273.      DrawPieces(before, d);
  274.  
  275.      if (anim) 
  276.      {
  277.          p1 = CenterRect(Rectangle(scrntoxy(d%8+1),scrntoxy(8-d/8), &r));
  278.          p2 = CenterRect(Rectangle(scrntoxy(a%8+1),scrntoxy(8-a/8), &r));
  279.     
  280.          h1 = GetPicture(after);
  281.          HNoPurge((Handle)h1);
  282.          h2 = GetPicture(after-1+after % 4);
  283.          HNoPurge((Handle)h2);
  284.         
  285.         NewDraggable(h1, h2, 0L, 0L, &myDragStuff);
  286.     
  287.         HPurge((Handle)(h1));
  288.         HPurge((Handle)(h2));
  289.     
  290.         DragFromTo(myDragStuff,p1,p2);
  291.     
  292.         DisposeDraggable(myDragStuff);
  293.     }
  294.  
  295.      DrawPieces(after,a);
  296.     SetPort(oldPort);
  297. }
  298.  
  299.